Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

633419 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/31 - Pop the Balloons

font/ cody/swapnilsparsh/30DaysOfJavaScript/31 - Pop the Balloons/font/
1 Items
  • sans.ttf
  • assets/ cody/swapnilsparsh/30DaysOfJavaScript/31 - Pop the Balloons/assets/
    1 Items
  • Balloon.png
  • style.css cody/swapnilsparsh/30DaysOfJavaScript/31 - Pop the Balloons/style.css
    95 Views
    0 Comments
    * {
    padding: 0;
    box-sizing: border-box;
    font-family: "sans";
    }

    @font-face {
    font-family: "sans";
    index.html cody/swapnilsparsh/30DaysOfJavaScript/31 - Pop the Balloons/index.html
    333 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">

    <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <link rel="stylesheet" href="style.css">
    script.js cody/swapnilsparsh/30DaysOfJavaScript/31 - Pop the Balloons/script.js
    170 Views
    0 Comments
    let popped = 0;

    document.addEventListener('mouseover', function (e) {

    if (e.target.className === "balloon") {

    e.target.style.backgroundColor = "#19172e";
    e.target.textContent = "🎈";